home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / C Internet Config / Examples ƒ / Space Aliens / 68k Space Aliens / IC Link In Subs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-06  |  780 b   |  41 lines  |  [TEXT/SPM ]

  1. /*
  2.     IC Link In Subs.h
  3.     
  4.     Header file for IC Link In Subs.c
  5.     
  6. */
  7.  
  8. #pragma once
  9.  
  10. #ifndef __H_IC_Link_In_Subs__
  11. #define __H_IC_Link_In_Subs__
  12.  
  13. #include "IC Types.h"
  14.  
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18.  
  19. ICError EditPreferences(StringPtr key,FSSpecPtr prefsfile);
  20.  
  21. ICError FindScheme(Handle urlh,StringPtr scheme);
  22. ICError LaunchURL(OSType helper,Handle urlh);
  23. ICError HaveProcessManager(void);
  24. Boolean HaveNewStandardFile(void);
  25. OSErr FSSpecToFullPath(FSSpecPtr fs,StringPtr path);
  26. ICError CanInteract(void);
  27.  
  28. ICError ICFileSpecToFSSpec(ICFileSpecHandle filespec,Boolean can_interact,FSSpecPtr fs);
  29. OSErr FSSpecToICFileSpec(FSSpecPtr fs,ICFileSpecHandle filespec);
  30.  
  31. void PasStrCopy(StringPtr from,StringPtr to);
  32.  
  33. #ifdef __cplusplus
  34. }
  35. #endif
  36.  
  37. #endif /* __H_IC_Link_In_Subs__ */
  38.  
  39.  
  40.  
  41.